home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 3 code / Video Accelerator / GC FKEY / GraphAccel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  851 b   |  48 lines  |  [TEXT/MPS ]

  1.  
  2.  
  3. /***********************************************************************************************
  4.  
  5.  
  6.     File:            GraphAccel.h
  7.     Date:            Saturday, May 19, 1990 8:46:48 AM
  8.     
  9.         
  10.     
  11.     Copyright Apple Computer, Inc. 1988-1990. 
  12.     All Rights Reserved.
  13.     
  14.     Definitions for use with GraphAccel.o interface library.
  15.     
  16.     
  17.  
  18.  
  19. ************************************************************************************************/
  20.  
  21.  
  22.  
  23.  
  24.  
  25. #ifndef    __GRAPHACCEL__
  26. #define    __GRAPHACCEL__
  27.  
  28. #ifndef __TYPES__
  29. #include <Types.h>
  30. #endif
  31.  
  32.  
  33.     
  34. OSErr                                /* Call to set acceleration on or off                             */
  35. GCAcceleration(Boolean state);        /* returns zero if was off, one if was on, or negative if error  */
  36.  
  37. OSErr                                /* call to test if acceleration is on or off                     */
  38. GCStatus(void);                        /* returns zero if was off, one if was on, or negative if error  */
  39.     
  40.  
  41. #endif    __GRAPHACCEL__
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.